Skip to content

Instantly share code, notes, and snippets.

@nwade
nwade / README.md
Last active February 28, 2026 06:44
Remove SentinelOne Agent - macOS High Sierra/Mojave

Warning - use at your own risk

Remove SentinelOne agent from Mac

  1. Boot into Recovery Mode by holding Cmd+R during reboot
  2. Open Terminal from top menubar
  3. Run /Applications/Utilities/Disk\ Utility.app/Contents/MacOS/Disk\ Utility to open Disk Utility
  4. If your startup disk is encrypted, use Disk Utility to mount it
  5. In Terminal, run chroot /Volumes/Macintosh\ HD
  6. Execute the deletion commands or script
@Marie-zaj
Marie-zaj / Client.cpp
Created February 27, 2026 21:23
12.02
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <iostream>
#include <ws2tcpip.h>
#include <string>
#pragma comment(lib, "Ws2_32.lib")
#define DEFAULT_BUFLEN 512
#define DEFAULT_PORT "27015"
@jimfleming
jimfleming / Blur.shader
Last active February 28, 2026 06:39
A simple separable blur shader with tint pass.
Shader "Hidden/Blur" {
Properties {
_MainTex ("", 2D) = "white" {}
_BlurSize ("", Range(0.0, 1.0)) = 1.0
_Tint ("", Color) = (0.0, 0.0, 0.0, 0.0)
_Tinting ("", Range(0.0, 1.0)) = 0.64
}
SubShader {
@vlaleli
vlaleli / Clientmain.cpp
Last active February 28, 2026 06:38
socket server/client
#include <arpa/inet.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <unistd.h>
#include <iostream>
#include <string>
#include <thread>
static const int SERVER_PORT = 5555;
@dollspace-gay
dollspace-gay / VSDD.md
Last active February 28, 2026 06:37
Verified Spec-Driven Development

Verified Spec-Driven Development (VSDD)

The Fusion: VDD × TDD × SDD for AI-Native Engineering

Overview

Verified Spec-Driven Development (VSDD) is a unified software engineering methodology that fuses three proven paradigms into a single AI-orchestrated pipeline:

  • Spec-Driven Development (SDD): Define the contract before writing a single line of implementation. Specs are the source of truth.
  • Test-Driven Development (TDD): Tests are written before code. Red → Green → Refactor. No code exists without a failing test that demanded it.
@karpathy
karpathy / microgpt.py
Last active February 28, 2026 06:37
microgpt
"""
The most atomic way to train and run inference for a GPT in pure, dependency-free Python.
This file is the complete algorithm.
Everything else is just efficiency.
@karpathy
"""
import os # os.path.exists
import math # math.log, math.exp
@Vinnik67
Vinnik67 / Client.cpp
Created February 26, 2026 17:34
дз от 26.02
#define WIN32_LEAN_AND_MEAN
#include <iostream>
#include <windows.h>
#include <ws2tcpip.h>
#include <string>
#pragma comment (lib, "Ws2_32.lib")
#define DEFAULT_BUFLEN 512
#define DEFAULT_PORT "27015"
@bstonedev
bstonedev / cheatsheet-ascii-unicode-quotation-marks.md
Created February 10, 2020 07:12
A Guide to ASCII, Unicode, UTF-8 and UTF-16 for quote marks and dashes.
UTF-16 UTF-8 DESCRIPTION SAMPLE
\U0022 \x22 QUOTATION MARK "
\U0027 \x27 APOSTROPHE '
\U201C \xe2\x80\x9c LEFT DOUBLE QUOTE
\U201D \xe2\x80\x9d RIGHT DOUBLE QUOTE
\U2018 \xe2\x80\x98 LEFT SINGLE QUOTE
\U2019 \xe2\x80\x99 RIGHT SINGLE QUOTE
\u002d \x2d A HYPHEN -
\u2013 \xe2\x80\x93 AN EN DASH
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active February 28, 2026 06:30
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.

How to use this script:

  1. Accept a quest under the Quests tab
  2. Press Ctrl+Shift+I to open DevTools
  3. Go to the Console tab
  4. Paste the following code and hit enter:

nof1.ai Alpha Arena 提示词工程逆向分析

逆向工程说明: 本文档基于 nof1.ai Alpha Arena 的公开文档、交易行为模式、API 响应格式和社区讨论,系统性地逆向推导出其 System Prompt 和 User Prompt 的完整结构,欢迎各路大佬戳戳评论,一起来进行这个有趣的实验。

GitHub - nof0 Follow @wquguru

目录